{% extends 'core/_base.html' %} {% block title %} Manage Category {% endblock title %} {% block body %}
Manage Category
{% if category %}
{% for item in category %} {%if item.is_active == True %} {% else %} {%endif%} {% endfor %}
SL. Category Name Status Action
{{ forloop.counter }} {{ item.name }}ActiveInactive
{% if category.has_previous %} Previous {% endif %}
{% if category.has_next %} Next {% endif %}

Showing {{ category.number }}/{{ category.paginator.num_pages }}

{% else %} {% endif %}
{% endblock body %}